home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
HPAVC
/
HPAVC CD-ROM.iso
/
BPC-TRTL.ZIP
/
SYSTEM.ASM
< prev
next >
Wrap
Assembly Source File
|
1995-05-30
|
294b
|
15 lines
.model small
.code
public HaltError, HaltTurbo
extrn _Vars:abs, _Consts:abs ; We need 2 ensure th@ vars & consts R linked in
HaltError:
HaltTurbo:
mov ax,4C00h+_Vars-_Vars ; C00l, eh?
int 21h
dw _Consts ; This trick doesn't work with consts, we lose two bytes here :(
end